aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/views/Account/[comp].vue
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-11-11 00:52:57 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-11-11 00:52:57 -0500
commitfdf78dd5bf25f345cc8419cc547cdbafaf54ae86 (patch)
tree0e1f8ef9f27e7a0a6532299161db06b8dc5a999b /front-end/src/views/Account/[comp].vue
parent39a22deb6a232356bf7b2ef8386679bc8ea2f697 (diff)
switch default api path, reduce bundle size, and swtich to async componentsv0.1.3
Diffstat (limited to 'front-end/src/views/Account/[comp].vue')
-rw-r--r--front-end/src/views/Account/[comp].vue7
1 files changed, 1 insertions, 6 deletions
diff --git a/front-end/src/views/Account/[comp].vue b/front-end/src/views/Account/[comp].vue
index 9e6343d..d854e2e 100644
--- a/front-end/src/views/Account/[comp].vue
+++ b/front-end/src/views/Account/[comp].vue
@@ -58,10 +58,8 @@ const comp = useRouteParams<ComponentType>('comp')
const tabId = computed<number>(() =>{
switch (comp.value) {
- case ComponentType.Oauth:
- return 1
case ComponentType.Settings:
- return 2
+ return 1
case ComponentType.Profile:
default:
return 0
@@ -71,9 +69,6 @@ const tabId = computed<number>(() =>{
const onTabChange = (tabid : number) =>{
switch (tabid) {
case 1:
- comp.value = ComponentType.Oauth
- break
- case 2:
comp.value = ComponentType.Settings
break
case 0: